Learn T-SQL Commands with Samples
Skip Navigation Links
Skip Navigation Links.
Expand DatabaseDatabase
Expand TableTable
Expand ViewView
Expand Stored ProcedureStored Procedure
Expand Data FilteringData Filtering
Expand Data GroupingData Grouping
Expand JoinsJoins
Expand TriggerTrigger
Expand CursorCursor
Expand OperatorsOperators
Expand ConstraintsConstraints
Expand FunctionsFunctions
Expand Conditional ProcessingConditional Processing
Expand LoopingLooping
Expand Error HandlingError Handling
Expand v.IMP Queriesv.IMP Queries
Expand XMLXML
Expand Query PerformanceQuery Performance
Expand QueriesQueries
Collapse NormalizationNormalization
Expand CreateCreate
     

First Normal Form

 
      
Unnormalized table
ID Nation Capital Game1 Game2 Game3
1 India Delhi Hockey Cricket Boxing
2 USA Washington Baseball Swimming Cycling
      1. Eliminate repeating groups in individual tables.
      2. Create a separate table for each set of related data.
      3. Identify each set of related data with a primary key.

      
First Normal Form Table
ID Nation Capital Game
1 India Delhi Hockey
1 India Delhi Cricket
1 India Delhi Boxing
2 USA Washington Baseball
2 USA Washington Swimming
2 USA Washington Cycling